projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2bf0758
)
GCC4.6: Squash warnings in pmc405de.c
author
Marek Vasut
<
[email protected]
>
Fri, 21 Oct 2011 14:17:22 +0000
(14:17 +0000)
committer
Wolfgang Denk
<
[email protected]
>
Thu, 27 Oct 2011 21:54:02 +0000
(23:54 +0200)
pmc405de.c: In function 'do_painit':
pmc405de.c:444: warning: format '%08x' expects type 'unsigned int', but argument
2 has type 'phys_size_t'
Signed-off-by: Marek Vasut <
[email protected]
>
Cc: Wolfgang Denk <
[email protected]
>
Cc: Simon Glass <
[email protected]
>
Cc: Mike Frysinger <
[email protected]
>
board/esd/pmc405de/pmc405de.c
patch
|
blob
|
history
diff --git
a/board/esd/pmc405de/pmc405de.c
b/board/esd/pmc405de/pmc405de.c
index c266ebe84ff9b831752d985f61e4e5c4f911ed4f..a60809a1dd6d76d16e64bd92258df8c2134d70b1 100644
(file)
--- a/
board/esd/pmc405de/pmc405de.c
+++ b/
board/esd/pmc405de/pmc405de.c
@@
-441,7
+441,7
@@
int do_painit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
*/
param = base - (pram << 10);
printf("PARAM: @%08x\n", param);
- debug("memsize=0x%08x, base=0x%08x\n", gd->bd->bi_memsize, base);
+ debug("memsize=0x%08x, base=0x%08x\n",
(u32)
gd->bd->bi_memsize, base);
/* clear entire PA ram */
memset((void*)param, 0, (pram << 10));